    /* Styling for sticky header and footer */
    .custom-sticky-header {
      position: -webkit-sticky;
      position: sticky;
      top: 0;
      background-color: #f8f9fa;
      z-index: 1000;
    }
    .custom-sticky-footer {
      position: -webkit-sticky;
      position: sticky;
      bottom: 0;
      background-color: #f8f9fa;
      z-index: 1000;
    }
    /* Close button styling */
    .custom-close-button {
      cursor: pointer;
      float: right;
      padding: 10px;
    }
    /* Styling for sticky ad */
    .custom-sticky-ad {
      position: -webkit-sticky;
      position: sticky;
      top: 0;
      background-color: #ffffff; /* Change the background color of the ad if needed */
      z-index: 1000;
    }